home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / fs / dev.h < prev    next >
C/C++ Source or Header  |  1990-07-23  |  276b  |  12 lines

  1. /* Device table.  This table is indexed by major device number.  It provides
  2.  * the link between major device numbers and the routines that process them.
  3.  */
  4.  
  5. extern struct dmap {
  6.   void (*dmap_open)();
  7.   void (*dmap_rw)();
  8.   void (*dmap_close)();
  9.   int dmap_task;
  10. } dmap[];
  11.  
  12.